/-boot
/-docs
/-docs/CodeMirrorServices
DocumentState.ts
EditorPool.ts
/-docs/api
/-docs/types
/-docs/types/api
DocState.ts
DocType.ts
/-editor
/-files
FileEntry.ts
FileList.ts
FolderEntry.ts
functions.ts
/-files-old
/-imports
/-layout
/-shell ...
EditorShell.ts
/-storage
/-tests
/-typings
Dom.ts
TypeScriptService.ts
functions.ts
ko.ts
nteapo.html
persistence.api.ts
persistence.ts
shell.ts
teapo.html
teapo.ts
try.html
try.js
xxxxxxxxxx
 
1
module teapo.shell {
2
​
3
  export class EditorShell {
4
​
5
    private _layout = new layout.MainLayout(this._dom);
6
​
7
    constructor(
8
      private _dom: Dom,
9
      private _bootLayoutContainer: HTMLElement,
10
      private _fileList: files.FileList,
11
      private _metadata: { [property: string]: string; },
12
      private _metadataUpdater: (property: string, value: string) => void) {
13
        
14
      
15
    }
16
    
17
  }
18
  
19
}
10:45